找传奇、传世资源到传世资源站!

FastSocket是c#异步socket通信库

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】FastSocket是c#异步socket通信库
FastSocket是一个轻量级易扩展的c#异步socket通信库,项目开始于2011年,经过近3年不断调整与改进,目前在功能和性能上均有不错的表现

【相关图片】

from clipboard

from clipboard

from clipboard

【源码结构】

.
├── FastSocket.Net-master
│   ├── FastSocket.Client
│   │   ├── AsyncBinarySocketClient.cs
│   │   ├── BaseSocketClient.cs
│   │   ├── FastSocket.Client.csproj
│   │   ├── PooledSocketClient.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Protocol
│   │   │   ├── AsyncBinaryProtocol.cs
│   │   │   ├── BadProtocolException.cs
│   │   │   ├── IProtocol.cs
│   │   │   └── ThriftProtocol.cs
│   │   ├── Request.cs
│   │   ├── RequestException.cs
│   │   ├── Response
│   │   │   ├── AsyncBinaryResponse.cs
│   │   │   ├── IResponse.cs
│   │   │   └── ThriftResponse.cs
│   │   ├── ServerPool
│   │   │   ├── DefaultServerPool.cs
│   │   │   └── IServerPool.cs
│   │   ├── SocketConnector.cs
│   │   └── ThriftClient.cs
│   ├── FastSocket.Net.sln
│   ├── FastSocket.Server
│   │   ├── BaseSocketServer.cs
│   │   ├── Command
│   │   │   ├── AsyncBinaryCommandInfo.cs
│   │   │   ├── ICommand.cs
│   │   │   ├── ICommandInfo.cs
│   │   │   ├── StringCommandInfo.cs
│   │   │   └── ThriftCommandInfo.cs
│   │   ├── CommandSocketService.cs
│   │   ├── Config
│   │   │   ├── Server.cs
│   │   │   ├── ServerCollection.cs
│   │   │   └── SocketServerConfig.cs
│   │   ├── FastSocket.Server.csproj
│   │   ├── ISocketListener.cs
│   │   ├── ISocketService.cs
│   │   ├── IUdpServer.cs
│   │   ├── IUdpService.cs
│   │   ├── PacketBuilder.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Protocol
│   │   │   ├── AsyncBinaryProtocol.cs
│   │   │   ├── BadProtocolException.cs
│   │   │   ├── CommandLineProtocol.cs
│   │   │   ├── IProtocol.cs
│   │   │   ├── IUdpProtocol.cs
│   │   │   ├── ProtocolNames.cs
│   │   │   └── ThriftProtocol.cs
│   │   ├── SocketListener.cs
│   │   ├── SocketServer.cs
│   │   ├── SocketServerManager.cs
│   │   ├── UdpServer.cs
│   │   ├── UdpSession.cs
│   │   └── app.config
│   ├── FastSocket.SocketBase
│   │   ├── BaseHost.cs
│   │   ├── ConnectionCollection.cs
│   │   ├── DefaultConnection.cs
│   │   ├── Events
│   │   │   ├── DisconnectedHandler.cs
│   │   │   ├── ErrorHandler.cs
│   │   │   ├── MessageReceivedHandler.cs
│   │   │   ├── SendCallbackHandler.cs
│   │   │   └── StartSendingHandler.cs
│   │   ├── FastSocket.SocketBase.csproj
│   │   ├── IConnection.cs
│   │   ├── IHost.cs
│   │   ├── ISAEAPool.cs
│   │   ├── Packet.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── Utils
│   │       ├── ConsistentHashContainer.cs
│   │       ├── Date.cs
│   │       ├── DisposableBase.cs
│   │       ├── IPUtility.cs
│   │       ├── InterlockedQueue.cs
│   │       ├── InterlockedStack.cs
│   │       ├── NetworkBitConverter.cs
│   │       ├── ReflectionHelper.cs
│   │       └── TaskEx.cs
│   ├── QuickStart
│   │   ├── Binary
│   │   │   ├── Client
│   │   │   │   ├── Client.csproj
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   └── Server
│   │   │       ├── App.config
│   │   │       ├── Program.cs
│   │   │       ├── Properties
│   │   │       │   └── AssemblyInfo.cs
│   │   │       └── Server.csproj
│   │   ├── CommandLine
│   │   │   ├── App.config
│   │   │   ├── CommandLine.csproj
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │       └── AssemblyInfo.cs
│   │   └── Udp
│   │       ├── Client
│   │       │   ├── Client.csproj
│   │       │   ├── Program.cs
│   │       │   └── Properties
│   │       │       └── AssemblyInfo.cs
│   │       └── Server
│   │           ├── Program.cs
│   │           ├── Properties
│   │           │   └── AssemblyInfo.cs
│   │           └── Server.csproj
│   └── README.md
└── FastSocket是c#异步socket通信库_FastSocket.Net-master.zip

28 directories, 91 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复